home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00008_edit list scripts.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  14.1 KB  |  404 lines

  1. on EditListPlay firstTime, pauseIt
  2.   global givState, givFrameScript, givCONTROLPANELSPRITE, givMAINMONITORSPRITE, givEDITTEXTBOXSPRITE, givTextRegColor, gSISystem, gSIFlush, gSIEventQ, givPlayingQSL, exitFrame, givROLLCREDITSMASKSPRITE, givMainMonitorRefreshFlag
  3.   MessagePut("edit list play")
  4.   set stopMe to 9
  5.   set givPlayingQSL to 0
  6.   set ct to count(the editList of givState)
  7.   set ptr to the editListPlaybackPtr of givState
  8.   if ct < 1 then
  9.     MessagePut("no edit list, ignore call")
  10.     set the editList of givState to []
  11.     set the editListPtr of givState to 0
  12.     set the editListPlaybackPtr of givState to 0
  13.     DVHide()
  14.     exit
  15.   end if
  16.   if ptr > ct then
  17.     set the editListPlaybackPtr of givState to 999
  18.     MessagePut("edit list played out, abort")
  19.     if the mode of givState = #edit then
  20.       set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play button"
  21.     else
  22.       set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play mode play button"
  23.     end if
  24.     set givMainMonitorRefreshFlag to 1
  25.     abort()
  26.   end if
  27.   if ptr < 1 then
  28.     set the editListPlaybackPtr of givState to 1
  29.     set ptr to 1
  30.   end if
  31.   if firstTime then
  32.     set the visible of sprite givROLLCREDITSMASKSPRITE to 0
  33.     MessagePut("starting editList, going to frame RollCredits")
  34.     set the visible of sprite givEDITTEXTBOXSPRITE to 0
  35.     go("ivRollCredits")
  36.     exit
  37.   end if
  38.   set clipID to getAt(the editList of givState, ptr)
  39.   MessagePut("clip at ptr" && ptr && "is" && clipID)
  40.   if char 1 to 2 of clipID = "TR" then
  41.     if count(the editList of givState) <= 1 then
  42.     else
  43.       if ptr = ct then
  44.         if (ptr > 1) and (char 1 to 2 of getAt(the editList of givState, ptr - 1) <> "TR") then
  45.           MessagePut("transition to black")
  46.           DoTransition(char 3 of clipID, getAt(the editList of givState, ptr - 1), "black")
  47.           exit
  48.         else
  49.         end if
  50.       else
  51.         if ptr = 1 then
  52.           if (ct > 1) and (char 1 to 2 of getAt(the editList of givState, ptr + 1) <> "TR") then
  53.             MessagePut("transition in from black")
  54.             DoTransition(char 3 of clipID, "black", getAt(the editList of givState, ptr + 1))
  55.             exit
  56.           else
  57.           end if
  58.         else
  59.           if (char 1 to 2 of getAt(the editList of givState, ptr - 1) = "TR") or (char 1 to 2 of getAt(the editList of givState, ptr + 1) = "TR") then
  60.           else
  61.             DoTransition(char 3 of clipID, getAt(the editList of givState, ptr - 1), getAt(the editList of givState, ptr + 1))
  62.             exit
  63.           end if
  64.         end if
  65.       end if
  66.     end if
  67.     set the editListPlaybackPtr of givState to ptr + 1
  68.     EditListPlay(0, pauseIt)
  69.     abort()
  70.   end if
  71.   set stopMe to PlayClip(clipID, 0, pauseIt)
  72.   MessagePut("clip over" && stopMe)
  73.   if stopMe = 1 then
  74.     if the mode of givState = #edit then
  75.       set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play button"
  76.     else
  77.       set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play mode play button"
  78.     end if
  79.     set givMainMonitorRefreshFlag to 1
  80.     MessagePut("abort called, list done")
  81.     abort()
  82.   else
  83.     set the editListPlaybackPtr of givState to the editListPlaybackPtr of givState + 1
  84.     EditListPlay(0, pauseIt)
  85.   end if
  86. end
  87.  
  88. on DoTransition TR, clip1, clip2
  89.   global givTransFrom, givTransTo, givTransitionType, givTransitionLookupList, gSISystem
  90.   MessagePut("transition type" && TR & "... from" && clip1 && "to" && clip2)
  91.   set givTransitionType to getAt(givTransitionLookupList, value(TR))
  92.   if (clip1 = "black") or (char 1 to 2 of clip1 = "AD") then
  93.     set givTransFrom to "MainMonitorCastBlack"
  94.   else
  95.     if gSISystem = "MAC" then
  96.       set givTransFrom to clip1 & "L.BMP"
  97.     else
  98.       set givTransFrom to clip1 & "L.IND"
  99.     end if
  100.   end if
  101.   if (clip2 = "black") or (char 1 to 2 of clip2 = "AD") then
  102.     set givTransTo to "MainMonitorCastBlack"
  103.   else
  104.     if gSISystem = "MAC" then
  105.       set givTransTo to clip2 & "F.BMP"
  106.     else
  107.       set givTransTo to clip2 & "F.IND"
  108.     end if
  109.   end if
  110.   duplicate(cast givTransFrom, cast 501)
  111.   duplicate(cast givTransTo, cast 502)
  112.   set the name of cast 501 to "foo"
  113.   set the name of cast 502 to "bar"
  114.   MessagePut("going to frame ivTrans" & TR)
  115.   put "Duck0"
  116.   go("ivTrans" & TR)
  117.   put "Duck2"
  118. end
  119.  
  120. on EditListSave
  121.   global givState, givEditListSave, gSISystem, gSIHDPath, gSIMiscX
  122.   MessagePut("edit list save")
  123.   PlaySoundWait("CLIK2.AIF")
  124.   if (the mode of givState <> #edit) or (count(the editList of givState) < 1) then
  125.     nothing()
  126.     exit
  127.   end if
  128.   if objectp(givEditListSave) then
  129.     givEditListSave(mdispose)
  130.   end if
  131.   set filenm to EMPTY
  132.   if gSISystem = "MAC" then
  133.     set filenm to givMyDialog(mPutFile, "editlist.sik", EMPTY)
  134.   else
  135.     set filenm to givMyDialog(mPutFile, EMPTY, "*.sik", "*.sik")
  136.   end if
  137.   if filenm = EMPTY then
  138.     MessagePut("save file cancelled")
  139.     exit
  140.   end if
  141.   if fileExists(filenm) then
  142.     if gSIMiscX(mAnswer, "Replace file " & QUOTE & filenm & QUOTE & "?", EMPTY, "Replace", "Cancel") = "Cancel" then
  143.       exit
  144.     end if
  145.   end if
  146.   if gSISystem = "MAC" then
  147.     set givEditListSave to FileIO(mnew, "write", filenm)
  148.   else
  149.     set givEditListSave to FileIO(mnew, "write", filenm)
  150.   end if
  151.   if not objectp(givEditListSave) then
  152.     MessagePut("could not initialize editListSave, save failed")
  153.     exit
  154.   end if
  155.   givEditListSave(mSetFinderInfo, "SIKD", "SIKD")
  156.   givEditListSave(mWriteString, "%" & string(the editList of givState) & RETURN)
  157.   MessagePut("wrote out " & the editList of givState)
  158.   givEditListSave(mWriteString, "%" & the userName of givState & RETURN)
  159.   givEditListSave(mWriteString, "%" & the userTitle of givState & RETURN)
  160.   givEditListSave(mWriteString, "%" & the userLoc of givState & RETURN)
  161.   givEditListSave(mdispose)
  162. end
  163.  
  164. on EditListAdd
  165.   global givState
  166.   PlaySoundWait("CLIK2.AIF")
  167.   if count(the questionSelectList of givState) > 0 then
  168.     repeat with I = 1 to count(the questionSelectList of givState)
  169.       append(the editList of givState, getAt(GetMonitorListByNumber(the activeMonitor of givState), getAt(the questionSelectList of givState, I)))
  170.     end repeat
  171.   else
  172.     append(the editList of givState, GetClipID(the activeMonitor of givState))
  173.   end if
  174.   set the editListPtr of givState to count(the editList of givState)
  175.   MessagePut("after add, editList:" && the editList of givState)
  176.   DisplayEditTextBox()
  177. end
  178.  
  179. on EditListRemove
  180.   global givState
  181.   PlaySoundWait("CLIK2.AIF")
  182.   if count(the editList of givState) > 0 then
  183.     deleteAt(the editList of givState, the editListPtr of givState)
  184.     if count(the editList of givState) < the editListPtr of givState then
  185.       set the editListPtr of givState to count(the editList of givState)
  186.     end if
  187.     MessagePut("after remove, editList:" && the editList of givState)
  188.   end if
  189.   DisplayEditTextBox()
  190. end
  191.  
  192. on EditListRemoveAll
  193.   global givState
  194.   PlaySoundWait("CLIK2.AIF")
  195.   set the editList of givState to []
  196.   set the editListPtr of givState to 0
  197.   DisplayEditTextBox()
  198. end
  199.  
  200. on EditListReplace
  201.   global givState
  202.   PlaySoundWait("CLIK2.AIF")
  203.   if count(the editList of givState) > 0 then
  204.     deleteAt(the editList of givState, the editListPtr of givState)
  205.     if count(the questionSelectList of givState) > 0 then
  206.       repeat with I = 1 to count(the questionSelectList of givState)
  207.         addAt(the editList of givState, the editListPtr of givState, getAt(GetMonitorListByNumber(the activeMonitor of givState), getAt(the questionSelectList of givState, I)))
  208.         set the editListPtr of givState to the editListPtr of givState + 1
  209.       end repeat
  210.       set the editListPtr of givState to the editListPtr of givState - 1
  211.     else
  212.       addAt(the editList of givState, the editListPtr of givState, GetClipID(the activeMonitor of givState))
  213.     end if
  214.     MessagePut("after replace, editList:" && the editList of givState)
  215.   end if
  216.   DisplayEditTextBox()
  217. end
  218.  
  219. on EditListInsert
  220.   global givState
  221.   PlaySoundWait("CLIK2.AIF")
  222.   if the editListPtr of givState = 0 then
  223.     set the editListPtr of givState to 1
  224.   end if
  225.   if count(the questionSelectList of givState) > 0 then
  226.     repeat with I = 1 to count(the questionSelectList of givState)
  227.       addAt(the editList of givState, the editListPtr of givState, getAt(GetMonitorListByNumber(the activeMonitor of givState), getAt(the questionSelectList of givState, I)))
  228.       set the editListPtr of givState to the editListPtr of givState + 1
  229.     end repeat
  230.     set the editListPtr of givState to the editListPtr of givState - 1
  231.   else
  232.     addAt(the editList of givState, the editListPtr of givState, GetClipID(the activeMonitor of givState))
  233.   end if
  234.   MessagePut("after insert, editList:" && the editList of givState)
  235.   DisplayEditTextBox()
  236. end
  237.  
  238. on DisplayEditTextBox
  239.   global givState, givTextRegColor, givTextHiliteColor, givVideoLookupList
  240.   MessagePut("display edit text box...")
  241.   if listp(the editList of givState) = 0 then
  242.     MessagePut("null edit list, init edit list to []")
  243.     set the editList of givState to []
  244.     set the editListPtr of givState to 0
  245.   end if
  246.   if count(the editList of givState) = 0 then
  247.     set the text of field "EditTextBox" to "*no edit list*"
  248.     set the foreColor of field "EditTextBox" to givTextRegColor
  249.   else
  250.     set tempText to EMPTY
  251.     repeat with I = 1 to count(the editList of givState)
  252.       set id to getAt(the editList of givState, I)
  253.       set tag to item 5 of getaProp(givVideoLookupList, id)
  254.       put tag & RETURN after tempText
  255.     end repeat
  256.     set the text of field "EditTextBox" to tempText
  257.     updateStage()
  258.     HiliteEditTextBox()
  259.   end if
  260. end
  261.  
  262. on UpdateEditTextBox newPtr
  263.   global givState
  264.   set j to the editListPtr of givState
  265.   MessagePut("old ptr is " & j)
  266.   if (j < 1) or (j > the number of lines in field "EditTextBox") then
  267.     nothing()
  268.   else
  269.     set S to offset("  <--", line j of field "EditTextBox")
  270.     if S <> 0 then
  271.       delete char S to S + 4 of line j of field "EditTextBox"
  272.     end if
  273.     set the editListPtr of givState to newPtr
  274.     MessagePut("new ptr is " & newPtr)
  275.     HiliteEditTextBox()
  276.   end if
  277. end
  278.  
  279. on HiliteEditTextBox
  280.   global givState, givTextRegColor, givTextHiliteColor, givLastIndexLine
  281.   set the foreColor of field "EditTextBox" to givTextRegColor
  282.   set N to the number of lines in field "EditTextBox"
  283.   set j to the editListPtr of givState
  284.   MessagePut("about to set hilite, # lines:" && N && " ptr:" && j && "givLastIndexLine is" && givLastIndexLine)
  285.   put "  <--" after line j of field "EditTextBox"
  286.   updateStage()
  287. end
  288.  
  289. on DoTransitionTest
  290.   global givTransFrom, givTransTo, givTransitionType, givTransitionLookupList, gSISystem, givTransitionTest, givTransitionList, givState, givTransitionTestCleanupFlag, givTransTestPtr, givEDITTEXTBOXSPRITE, givTransTest
  291.   set givTransFrom to "transFrom"
  292.   set givTransTo to "transTo"
  293.   DisableIdleAnim()
  294.   set the visible of sprite givEDITTEXTBOXSPRITE to 0
  295.   if count(the questionSelectList of givState) > 0 then
  296.     if givTransTestPtr > count(the questionSelectList of givState) then
  297.       set givTransitionTestCleanupFlag to 1
  298.       set givTransTestPtr to 0
  299.       exit
  300.     else
  301.       set givTransTest to 1
  302.       set TR to getAt(givTransitionList, getAt(the questionSelectList of givState, givTransTestPtr))
  303.       duplicate(cast givTransFrom, cast 501)
  304.       duplicate(cast givTransTo, cast 502)
  305.       set the name of cast 501 to "foo"
  306.       set the name of cast 502 to "bar"
  307.       MessagePut("going to frame ivTrans" & char 3 of TR)
  308.       go("ivTrans" & char 3 of TR)
  309.       set givTransitionTestCleanupFlag to 1
  310.     end if
  311.   else
  312.     set givTransTest to 1
  313.     set TR to getAt(givTransitionList, GetMonitorPtr(givState, 3))
  314.     duplicate(cast givTransFrom, cast 501)
  315.     duplicate(cast givTransTo, cast 502)
  316.     set the name of cast 501 to "foo"
  317.     set the name of cast 502 to "bar"
  318.     MessagePut("going to frame ivTrans" & char 3 of TR)
  319.     go("ivTrans" & char 3 of TR)
  320.     set givTransitionTestCleanupFlag to 1
  321.   end if
  322. end
  323.  
  324. on PlayEditNext
  325.   global givState, gSIEventQ, gSIFlush, gSISystem
  326.   set ct to count(the editList of givState)
  327.   set tmp to the editListPlaybackPtr of givState
  328.   if ct > 0 then
  329.     set tmp to tmp + 1
  330.     if tmp > ct then
  331.       set tmp to 1
  332.     end if
  333.     set found to 0
  334.     repeat while (found = 0) and (tmp <> the editListPlaybackPtr of givState)
  335.       set clip to getAt(the editList of givState, tmp)
  336.       if char 1 to 2 of clip = "TR" then
  337.         set tmp to tmp + 1
  338.         if tmp > ct then
  339.           set tmp to 1
  340.         end if
  341.         next repeat
  342.       end if
  343.       set found to 1
  344.     end repeat
  345.     MessagePut("incrementing editListPlaybackPtr to " & tmp)
  346.     set the editListPlaybackPtr of givState to tmp
  347.   end if
  348.   if the activeVideoMode of givState = #play then
  349.     MessagePut("stop the running movie...")
  350.     EndBufferingEvents()
  351.     DVPause()
  352.     EditListPlay(0, #play)
  353.     MessagePut("abort called after next clip started -- play")
  354.     abort()
  355.   end if
  356.   if the activeVideoMode of givState = #pause then
  357.     EndBufferingEvents()
  358.     EditListPlay(0, #pause)
  359.     MessagePut("abort called after next clip started -- pause")
  360.     abort()
  361.   end if
  362. end
  363.  
  364. on PlayEditPrevious
  365.   global givState, gSIEventQ, gSISystem
  366.   set ct to count(the editList of givState)
  367.   set tmp to the editListPlaybackPtr of givState
  368.   set found to 0
  369.   if ct > 0 then
  370.     set tmp to tmp - 1
  371.     if tmp = 0 then
  372.       set tmp to ct
  373.     end if
  374.     repeat while (found = 0) and (tmp <> the editListPlaybackPtr of givState)
  375.       set clip to getAt(the editList of givState, tmp)
  376.       if char 1 to 2 of clip = "TR" then
  377.         set tmp to tmp - 1
  378.         if tmp = 0 then
  379.           set tmp to ct
  380.         end if
  381.         next repeat
  382.       end if
  383.       set found to 1
  384.     end repeat
  385.     MessagePut("decrementing editListPlaybackPtr to " & tmp)
  386.     set the editListPlaybackPtr of givState to tmp
  387.   end if
  388.   if the activeVideoMode of givState = #play then
  389.     MessagePut("stop the running movie...")
  390.     EndBufferingEvents()
  391.     DVPause()
  392.     set the activeVideoMode of givState to #pause
  393.     EditListPlay(0, #play)
  394.     MessagePut("abort called after next clip started -- play")
  395.     abort()
  396.   end if
  397.   if the activeVideoMode of givState = #pause then
  398.     EndBufferingEvents()
  399.     EditListPlay(0, #pause)
  400.     MessagePut("abort called after next clip started -- pause")
  401.     abort()
  402.   end if
  403. end
  404.